/** * Copyright (c) 2010, Nicolas Peters, Signavio GmbH * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.signavio.warehouse.business.util.jpdl4; import java.io.StringWriter; import java.util.ArrayList; import java.util.List; import java.util.UUID; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import org.w3c.dom.NamedNodeMap; public class Custom extends Node { private String clazz; private String expr; private String lang; private String factory; private String method; private String autoWire; private String cache; private List<Field> fields; private List<Property> properties; private List<Arg> args; public Custom(JSONObject java) { this.name = JsonToJpdl.getAttribute(java, "name"); this.clazz = JsonToJpdl.getAttribute(java, "class"); this.expr = JsonToJpdl.getAttribute(java, "expr"); this.lang = JsonToJpdl.getAttribute(java, "lang"); this.factory = JsonToJpdl.getAttribute(java, "factory"); this.method = JsonToJpdl.getAttribute(java, "method"); this.autoWire = JsonToJpdl.getAttribute(java, "autowire"); this.cache = JsonToJpdl.getAttribute(java, "cache"); this.bounds = JsonToJpdl.getBounds(java); fields = new ArrayList<Field>(); try { JSONArray parameters = java.getJSONObject("properties") .getJSONObject("fields").getJSONArray("items"); for (int i = 0; i < parameters.length(); i++) { JSONObject item = parameters.getJSONObject(i); fields.add(new Field(item)); } } catch (JSONException e) { } properties = new ArrayList<Property>(); try { JSONArray parameters = java.getJSONObject("properties") .getJSONObject("properties").getJSONArray("items"); for (int i = 0; i < parameters.length(); i++) { JSONObject item = parameters.getJSONObject(i); properties.add(new Property(item)); } } catch (JSONException e) { } args = new ArrayList<Arg>(); try { JSONArray parameters = java.getJSONObject("properties") .getJSONObject("args").getJSONArray("items"); for (int i = 0; i < parameters.length(); i++) { JSONObject item = parameters.getJSONObject(i); args.add(new Arg(item)); } } catch (JSONException e) { } this.outgoings = JsonToJpdl.getOutgoings(java); } public Custom(org.w3c.dom.Node custom) { this.uuid = "oryx_" + UUID.randomUUID().toString(); NamedNodeMap attributes = custom.getAttributes(); this.name = JpdlToJson.getAttribute(attributes, "name"); this.clazz = JpdlToJson.getAttribute(attributes, "class"); this.expr = JpdlToJson.getAttribute(attributes, "expr"); this.lang = JpdlToJson.getAttribute(attributes, "lang"); this.factory = JpdlToJson.getAttribute(attributes, "factory"); this.method = JpdlToJson.getAttribute(attributes, "method"); this.autoWire = JpdlToJson.getAttribute(attributes, "autoWire"); this.cache = JpdlToJson.getAttribute(attributes, "cache"); this.bounds = JpdlToJson.getBounds(attributes.getNamedItem("g")); // TODO add properties and fields } @Override public String toJpdl() throws InvalidModelException { StringWriter jpdl = new StringWriter(); jpdl.write(" <custom "); jpdl.write(JsonToJpdl.transformAttribute("name", name)); try { if(clazz != null && !clazz.equals("")) { jpdl.write(JsonToJpdl.transformRequieredAttribute("class", clazz)); } if(expr != null && !expr.equals("")) { jpdl.write(JsonToJpdl.transformRequieredAttribute("expr", expr)); } if(lang != null && !lang.equals("")) { jpdl.write(JsonToJpdl.transformRequieredAttribute("lang", lang)); } if(factory != null && !factory.equals("")) { jpdl.write(JsonToJpdl.transformRequieredAttribute("factory", factory)); } if(method != null && !method.equals("")) { jpdl.write(JsonToJpdl.transformRequieredAttribute("method", method)); } if(autoWire != null && !autoWire.equals("")) { jpdl.write(JsonToJpdl.transformRequieredAttribute("auto-wire", autoWire)); } if(cache != null && !cache.equals("")) { jpdl.write(JsonToJpdl.transformRequieredAttribute("cache", cache)); } } catch (InvalidModelException e) { throw new InvalidModelException("Invalid Java activity. " + e.getMessage()); } if (bounds != null) { jpdl.write(bounds.toJpdl()); } else { throw new InvalidModelException( "Invalid Java activity. Bounds is missing."); } jpdl.write(" >\n"); for (Field f : fields) { jpdl.write(f.toJpdl()); } for (Property a : properties) { jpdl.write(a.toJpdl()); } for (Arg a : args) { jpdl.write(a.toJpdl()); } for (Transition t : outgoings) { jpdl.write(t.toJpdl()); } jpdl.write(" </custom>\n\n"); return jpdl.toString(); } public String getClazz() { return clazz; } public void setClazz(String clazz) { this.clazz = clazz; } public String getExpr() { return expr; } public void setExpr(String expr) { this.expr = expr; } @Override public JSONObject toJson() throws JSONException { JSONObject stencil = new JSONObject(); stencil.put("id", "java"); JSONArray outgoing = JpdlToJson.getTransitions(outgoings); JSONObject properties = new JSONObject(); properties.put("bgcolor", "#ffffcc"); if (name != null) properties.put("name", name); if (clazz != null) properties.put("class", clazz); if (expr != null) properties.put("method", expr); // TODO add fields and args JSONArray childShapes = new JSONArray(); return JpdlToJson.createJsonObject(uuid, stencil, outgoing, properties, childShapes, bounds.toJson()); } }